home *** CD-ROM | disk | FTP | other *** search
/ Openstep 4.2 (Developer) / Openstep Developer 4.2.iso / NextDeveloper / Source / GNU / perl / Perl / ext / SDBM_File / Makefile.PL next >
Encoding:
Makefile  |  1995-01-19  |  398 b   |  20 lines

  1. use ExtUtils::MakeMaker;
  2.  
  3. # The existence of the ./sdbm/Makefile.PL file causes MakeMaker
  4. # to automatically include Makefile code for the targets
  5. #    config, all, clean, realclean and sdbm/Makefile
  6. # which perform the corresponding actions in the subdirectory.
  7.  
  8. WriteMakefile(
  9.     'MYEXTLIB' => 'sdbm/libsdbm.a',
  10. );
  11.  
  12.  
  13. sub MY::postamble {
  14.     '
  15. $(MYEXTLIB): sdbm/Makefile
  16.     cd sdbm; $(MAKE) all
  17. ';
  18. }
  19.  
  20.